-
Notifications
You must be signed in to change notification settings - Fork 50
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bump aws-sdk-go to v1.25.43 to support IRSA for pods EKS #31
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ran integ tests as shown here just to be safe: https://github.com/aws/aws-for-fluent-bit#development
go.sum
Outdated
@@ -4,6 +4,8 @@ github.com/aws/amazon-kinesis-firehose-for-fluent-bit v0.0.0-20190723183349-6ca3 | |||
github.com/aws/amazon-kinesis-firehose-for-fluent-bit v0.0.0-20190723183349-6ca31170fc03/go.mod h1:jZjLd+hsaK0oNVotfqbMK9gUsIhXvYEl7Z3tdZTYa54= | |||
github.com/aws/aws-sdk-go v1.20.6 h1:kmy4Gvdlyez1fV4kw5RYxZzWKVyuHZHgPWeU/YvRsV4= | |||
github.com/aws/aws-sdk-go v1.20.6/go.mod h1:KmX6BPdI08NWTb3/sm4ZGu5ShLoqVDhKgpiN924inxo= |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Old SDK is still in the go.sum
Fix this by running go mod tidy
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For some reason, go mod tidy
does not fix this issue. It looks like, we might need a new release for amazon-kinesis-firehose-for-fluent-bit where this dependency is coming from!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I finally figured this out. By default, go mod uses the latest git tag from a repo- which is v1.0.0
for firehose.
But you can tell it to just use the latest master:
go get github.com/aws/amazon-kinesis-firehose-for-fluent-bit@master
I ran that on your branch, and it fixed it.
b94cff3
to
ec618d1
Compare
Issue #, if available:
N/A
Description of changes:
Bumping aws-sdk-go to v1.25.43 to support IRSA for pods EKS
By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.